/* Temel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
    background-color: #111;
    overflow-x: hidden;
}

/* Tam Ekran Arka Plan Alanı */
.hero-section {
	width: 100%;
	height: 100vh;
	/* Örnekteki koltuk görselinin yerini tutacak şık bir mobilya görseli linki */
	background-image: url(../images/background.jpg?q=80&w=1920%27);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	flex-direction: column;
}

/* Görselin üzerindeki hafif koyuluk (Yazıların okunması için) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Navigasyon Çubuğu Düzeni */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 4%;
    width: 100%;
}

/* Menü Listeleri */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 40%; /* Logoyu ortalamak için genişlik dengesi */
}

.left-menu {
    justify-content: flex-start;
}

.right-menu {
    justify-content: flex-end;
}

/* Menü Linkleri */
.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li a:hover {
    color: #bfa15f; /* Lüks hissi veren hafif gold/vizon tonu hover rengi */
}

/* --- YENİ LOGO ALANI (Yan Çizgili Tasarım) --- */
.logo-area {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

/* Üstteki BULVAR kelimesi */
.logo-title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1;
    margin-bottom: 8px;
}

/* Alttaki MOBİLYA kelimesi ve yan çizgileri */
.logo-subtext {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1;
    color: #aaaaaa;
}

/* Sol Çizgi */
.logo-subtext::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-right: 10px;
}

/* Sağ Çizgi */
.logo-subtext::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-left: 10px;
}

/* Açılır Menü (Dropdown) Yapısı */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(20, 20, 20, 0.95);
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    list-style: none;
    padding: 10px 0;
    margin-top: 15px;
    border-top: 2px solid #bfa15f;
}

.dropdown-content li a {
    padding: 10px 20px;
    font-size: 12px;
    display: block;
    letter-spacing: 1px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Sağ taraftaki dil dropdown'ının sola doğru açılması için */
.right-menu .dropdown-content {
    left: auto;
    right: 0;
}

/* WhatsApp Hızlı İletişim Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Mobil Tasarım Ayarları */
.mobile-menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-icon span {
    width: 25px;
    height: 2px;
    background-color: #fff;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none; /* İleride mobil JavaScript entegrasyonu ile açılır hale getirilebilir */
    }
    .mobile-menu-icon {
        display: flex;
    }
    .logo-area {
        width: auto;
    }
    .navbar {
        padding: 20px 6%;
    }
}

/* Ana listeyi referans noktası yapın */
.dropdown {
    position: relative; 
}

/* Alt menüyü ana menünün tam bittiği yere sabitleyin */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Ana menü öğesinin tam altından başlar, arada boşluk kalmaz */
    left: 0;
    margin-top: 0; /* Varsa margin değerini sıfırlayın */
    z-index: 999;
}

/* Üzerine gelince menüyü göster */
.dropdown:hover .dropdown-content {
    display: block;
}

/* --- HERO İÇERİK ALANI (Slogan ve Buton) --- */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6); /* Yazının arka planda kaybolmaması için gölge */
}

.hero-subtitle {
    color: #f1f1f1;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
    line-height: 1.6;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.6);
}

/* Şık Keşfet Butonu */
.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #bfa15f; /* Hover rengin olan gold/vizon tonunu kullandık */
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 4px; /* Çok hafif bir köşe yumuşatması */
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.hero-btn:hover {
    background-color: #ffffff;
    color: #111111;
    transform: translateY(-3px); /* Üzerine gelince hafifçe yukarı kalkma efekti */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* --- ÖNE ÇIKAN KATEGORİLER ALANI --- */
.categories-section {
    padding: 80px 10%;
    background-color: #111111; /* Siyah temanın devamlılığı için */
    text-align: center;
}

.section-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* Başlığın altındaki şık altın/vizon çizgi */
.title-line {
    width: 60px;
    height: 2px;
    background-color: #bfa15f; 
    margin: 0 auto 50px auto;
}

/* 3'lü Kart Izgarası */
.category-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* Tekil Kart Yapısı */
.category-card {
    width: 32%;
    height: 400px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease; /* Yavaş ve şık bir zoom efekti */
}

/* Kartın altındaki karartı ve yazılar */
.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    text-align: left;
}

.category-info h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.category-link {
    color: #bfa15f;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.category-link span {
    transition: transform 0.3s ease;
}

/* Kartın Üzerine Gelindiğinde (Hover) Olacaklar */
.category-card:hover .category-image {
    transform: scale(1.08); /* Resmi hafifçe büyüt */
}

.category-card:hover .category-link {
    color: #ffffff;
}

.category-card:hover .category-link span {
    transform: translateX(5px); /* Oku sağa doğru kaydır */
}

/* Mobil için Alt Alta Sıralama */
@media (max-width: 900px) {
    .category-grid {
        flex-direction: column;
    }
    .category-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* --- S.S.S (FAQ) ALANI --- */
.faq-section {
    padding: 80px 15%;
    background-color: #1a1a1a; /* Kategorilerden ayrılması için çok hafif açık bir ton */
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(191, 161, 95, 0.3); /* Üzerine gelince hafif gold parlaması */
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.faq-question i {
    color: #bfa15f;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0; /* JS ile açıp kapatabilmek için başlangıçta kapalı tutuyoruz */
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #aaaaaa;
    font-size: 13px;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Soru tıklandığında aktif olacak sınıflar */
.faq-item.active .faq-answer {
    max-height: 200px; /* İçeriğe göre genişleyecek */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg); /* Oku yukarı döndür */
}

/* --- FOOTER (ALT BİLGİ) ALANI --- */
.footer-section {
    background-color: #0a0a0a; /* Sitenin arka planından bir ton daha koyu */
    color: #ffffff;
    padding: 70px 10% 20px 10%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Mobilde alt alta inmesi için */
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Footer Logosu */
.footer-logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 5px;
    color: #bfa15f;
    display: block;
    margin-top: 5px;
}

.footer-desc {
    color: #aaaaaa;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Sosyal Medya Butonları */
.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #bfa15f;
    transform: translateY(-3px); /* Yukarı kalkma efekti */
}

/* Sütun Başlıkları */
.footer-col h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #bfa15f; /* Altın rengi şık çizgi */
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

/* Link Hover Efektleri */
.links-col ul li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.links-col ul li a:hover {
    color: #bfa15f;
    padding-left: 5px; /* Üzerine gelince hafif sağa kayma efekti */
}

/* İletişim İkonları ve Metinleri */
.contact-col ul li {
    color: #aaaaaa;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.contact-col ul li i {
    color: #bfa15f;
    margin-top: 3px;
}

/* En Alt Telif Hakkı Çizgisi */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #777777;
    font-size: 12px;
    letter-spacing: 1px;
}